home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cstdio.arc / SRC.ARC / WCS.C < prev    next >
C/C++ Source or Header  |  1984-07-31  |  254b  |  17 lines

  1. /*    wcs.c - write console string.
  2.     (C) Copyright 1984 Gregory R. Mansfield - All Rights Reserved.
  3.     G. R. Mansfield.  84/01/01.
  4.     Ver 1.1-4731.
  5. */
  6.  
  7. wcs(s)
  8. char *s;
  9. {
  10.     while (*s)
  11.     {
  12.         if (*s == '\n')
  13.             msdos(2, '\r');
  14.         msdos(2, *s++);
  15.     }
  16. }
  17.